Problem 1 |
Create a Wintempla Dialog application called Rojo to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Rojo para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Rojo.cpp |
void Rojo::Window_Open(Win::Event& e) { int n = 1; wchar_t text[64]; while(17%n != 5) { _snwprintf_s(text, 64, _TRUNCATE, L"%d %d\r\n", n, 17%n); tbxOutput.Text += text; ++n; } } |
Problem 2 |
Create a Wintempla Dialog application called Arturo to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Arturo para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Arturo.cpp |
void Arturo::Window_Open(Win::Event& e) { int n = 2; wchar_t text[64]; do { _snwprintf_s(text, 64, _TRUNCATE, L"%d %d\r\n", n, n/5); tbxOutput.Text += text; n *= 2; } while(n != 32); } |
Problem 3 |
Create a Wintempla Dialog application called Caci to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Caci para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Caci.cpp |
void Caci::Window_Open(Win::Event& e) { int n=2; wchar_t text[64]; do { _snwprintf_s(text, 64, _TRUNCATE, L"%d %d", n, n/4); tbxOutput.Text += text; n*=2; } while(n != 20); } |
Problem 4 |
Create a Wintempla Dialog application called Caballero to test the following code. Cree una aplicación de Diálogo de Wintempla llamada Caballero para probar el código siguiente. |
Caballero.cpp |
void Caballero::Window_Open(Win::Event& e) { int n = 1, result = 1; wchar_t text[64]; do { ++n; result *= n; } while(n < 5); _snwprintf_s(text, 64, _TRUNCATE, L"The result is %d", result); this->MessageBox(text, L"", MB_OK); } |
Problem 5 |
Create a Wintempla Dialog application called Belleza to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Belleza para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Belleza.cpp |
void Belleza::Window_Open(Win::Event& e) { int n = -3; wchar_t text[64]; while(n < 3) { if (n == 0) continue; _snwprintf_s(text, 64, _TRUNCATE, L"%d\t", n); tbxOutput.Text += text; ++n; } } |
Problem 6 |
Create a Wintempla Dialog application called Blake to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Blake para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Blake.cpp |
void Blake::Window_Open(Win::Event& e) { int n = -3; wchar_t text[64]; while(n < 3) { ++n; if (n == 0) continue; _snwprintf_s(text, 64, _TRUNCATE, L"%d\t", n); tbxOutput.Text += text; } } |
Problem 7 |
Create a Wintempla Dialog application called Dino to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Dino para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Dino.cpp |
void Dino::Window_Open(Win::Event& e) { wchar_t text[64]; int n = -5; while(n < 10) { if (n == 1) break; _snwprintf_s(text, 64, _TRUNCATE, L"%d\r\n", n); tbxOutput.Text += text; ++n; } } |
Problem 8 |
Create a Wintempla Dialog application called Trailer to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Trailer para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Trailer.cpp |
void Trailer::Window_Open(Win::Event& e) { wchar_t text[64]; int n = -10; while(n < 11) { ++n; if (n > 9) break; _snwprintf_s(text, 64, _TRUNCATE, L"%d-", n); tbxOutput.Text += text; } } |
Problem 9 |
Create a Wintempla Dialog application called Sombrero to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Sombrero para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Program.cpp |
void Program::Window_Open(Win::Event& e) { wchar_t text[64]; const int MAX_COUNT = 5; int cuenta = 0, n = 0; while(cuenta < MAX_COUNT) { for(n = 1; n < MAX_COUNT+1; n++) { _snwprintf_s(text, 64, _TRUNCATE, L"%d", n); tbxOutput.Text += text; } tbxOutput.Text += L"\r\n"; cuenta++; } } |
Problem 10 |
Create a Wintempla Dialog application called Destino to test the following code. After creating the project, add a multiline textbox called tbxOutput. Cree una aplicación de Diálogo de Wintempla llamada Destino para probar el código siguiente. Después de crear el proyecto, agregue una caja de texto de multilínea llamada tbxOutput. |
Destino.cpp |
void Destino::Window_Open(Win::Event& e) { wchar_t text[64]; const int MAX_COUNT = 5; int cuenta = 0, n = 0; while(cuenta < MAX_COUNT) { for(n = 1; n < MAX_COUNT+1; n++) { _snwprintf_s(text, 64, _TRUNCATE, L"%d", n); tbxOutput.Text += text; } _snwprintf_s(text, 64, _TRUNCATE, L"%d\r\n", cuenta); tbxOutput.Text += text; cuenta++; } } |
Problem 11 |
Write a program called Fibonacci to display the numbers in the Fibonacci series that are less than 1000. By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum of the previous two: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, . . . Cree un programa llamado Fibonacci para mostrar los números en la serie de Fibonacci que son menores 1000. Por definición, los dos primeros números de la secuencia de Fibonacci son 0 y 1, y cada número subsecuente es la suma de los dos números previos: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, . . . |